home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / random.rea < prev    next >
Text File  |  1995-09-26  |  543b  |  20 lines

  1. Short:    Reads lines from stdin and outputs them in random order. Source only.
  2. Uploader: veijalai@cc.lut.fi
  3.  
  4.  
  5. Util for randomizing order of lines of text.
  6.  
  7. Handles unlimited amount of lines. Line length is not limited.
  8.  
  9.  
  10. On Linux, for example,
  11.  
  12.   ls *.jpg | random | head -n 3 | awk 'BEGIN {printf "zgv "} {printf $1}' >/tmp/xxx;sh /tmp/xxx
  13.  
  14. would show 3 random jpegs.
  15.  
  16.  
  17. This tiny util should compile on most systems.
  18. On Linux, "gcc -s -O2 -N random.c -o /usr/local/bin/random".
  19. Only source is included (I don't have a C compiler for Amiga).
  20.